/* ----- RESET & GLOBAL ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #f8fafc;
  color: #1e293b;
  line-height: 1.5;
}

/* container for consistent width */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ----- COLOR THEME (clean academic) ----- */
:root {
  --primary: #0f3b5e;       /* deep navy – trust & authority */
  --primary-light: #2b5b84;
  --accent: #c2491f;        /* terracotta – energy, creativity */
  --accent-soft: #e37e5a;
  --neutral-bg: #ffffff;
  --gray-light: #f1f5f9;
  --gray-mid: #94a3b8;
  --text-dark: #0f172a;
  --shadow: 0 20px 30px -10px rgba(15, 59, 94, 0.08);

  --gold: #c6a15b;
  --gold-dark: #9e7c48;
  --charcoal: #1e1e1c;
  --cream: #f4efe2;
  --deep-moss: #3f4a3a;
}

/* ----- TYPOGRAPHY & BASE ----- */
h1, h2, h3 {
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3.2rem;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}
h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 70px;
  height: 4px;
  background: var(--accent);
  border-radius: 4px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

a {
  text-decoration: none;
  color: inherit;
}

.section {
  padding: 80px 0;
}

.section-light {
  background: var(--neutral-bg);
}

.section-soft {
  background: var(--gray-light);
}

/* ----- BUTTONS & LINKS (action) ----- */
.btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 40px;
  transition: 0.25s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.btn i {
  margin-right: 8px;
}
.btn:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 15px 25px -8px rgba(15, 59, 94, 0.2);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  box-shadow: none;
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

/* ----- HEADER & NAV (learning center vibe) ----- */
header {
  background: white;
  box-shadow: 0 6px 18px rgba(0,0,0,0.02);
  position: sticky;
  top: 0;
  z-index: 10;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo a {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(145deg, var(--primary) 20%, var(--accent) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo span {
  font-weight: 300;
  background: none;
  -webkit-text-fill-color: var(--gray-mid);
  color: var(--gray-mid);
  font-size: 1rem;
  margin-left: 6px;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-links a {
  font-weight: 500;
  transition: 0.2s;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}
.nav-links a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* highlight "learning center" */
.nav-links .center-link {
  background: var(--accent);
  color: white !important;
  padding: 8px 20px;
  border-radius: 30px;
  border-bottom: none;
}
.nav-links .center-link:hover {
  background: var(--accent-soft);
  color: white;
  border-bottom: none;
}

/* ----- HERO (where learning is center) ----- */
.hero {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 40px 0 20px;
}

.hero-content {
  flex: 1.2;
}
.hero-content .badge {
  background: #e9eef3;
  color: var(--primary);
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.hero-content .badge i {
  color: var(--accent);
  margin-right: 6px;
}
.hero-content h1 {
  font-size: 3.4rem;
  line-height: 1.1;
  color: var(--text-dark);
}
.hero-content h1 em {
  font-style: normal;
  color: var(--accent);
  border-bottom: 4px solid var(--accent-soft);
}
.hero-content p {
  font-size: 1.2rem;
  color: #334155;
  margin: 24px 0 32px;
  max-width: 550px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}
.stat-item h4 {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
}
.stat-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gray-mid);
}

.hero-image {
  flex: 0.9;
  background: linear-gradient(145deg, #d6e2ef, #b6ccdd);
  border-radius: 30px;
  padding: 30px 20px;
  box-shadow: var(--shadow);
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
/* abstract "learning center" visual – books/laptop/atoms */
.hero-image .graphic {
  width: 100%;
  text-align: center;
}
.hero-image i {
  font-size: 6rem;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  right: 20px;
}
.hero-image .card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  width: 100%;
  z-index: 2;
  padding: 10px;
}
.card-grid .card-icon {
  background: white;
  border-radius: 24px;
  padding: 24px 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.02);
  text-align: center;
  backdrop-filter: blur(2px);
  transition: 0.2s;
}
.card-icon i {
  position: static !important;
  font-size: 2.2rem !important;
  opacity: 1 !important;
  color: var(--accent) !important;
  margin-bottom: 10px;
}
.card-icon span {
  display: block;
  font-weight: 600;
  color: var(--primary);
}

/* ----- FEATURES / pillars of learning ----- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 20px;
}
.feature-card {
  background: white;
  padding: 32px 24px;
  border-radius: 32px;
  box-shadow: var(--shadow);
  transition: 0.2s;
}
.feature-card:hover {
  transform: translateY(-8px);
}
.feature-icon {
  background: var(--gray-light);
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.feature-icon i {
  font-size: 2.2rem;
  color: var(--primary);
}
.feature-card h3 {
  font-size: 1.5rem;
}
.feature-card p {
  color: #475569;
  margin: 16px 0 24px;
}
.feature-link {
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
}
.feature-link i {
  font-size: 0.9rem;
  transition: 0.2s;
}
.feature-link:hover i {
  transform: translateX(5px);
}

/* ----- PROGRAMS (center learning paths) ----- */
.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.program-item {
  background: white;
  border-radius: 28px;
  padding: 28px 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.02);
  border: 1px solid #e9eef3;
  transition: 0.2s;
  text-align: center;
}
.program-item:hover {
  border-color: var(--accent-soft);
  box-shadow: 0 20px 30px -10px rgba(194,73,31,0.08);
}
.program-icon {
  background: var(--gray-light);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.program-icon i {
  font-size: 2.2rem;
  color: var(--primary);
}
.program-item h4 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.program-item p {
  color: #64748b;
  font-size: 0.9rem;
}

/* ----- TESTIMONIAL / learning center quote ----- */
.testimonial-card {
  background: var(--primary);
  color: white;
  padding: 60px 60px;
  border-radius: 50px;
  box-shadow: var(--shadow);
  position: relative;
  text-align: center;
}
.testimonial-card i {
  font-size: 4rem;
  opacity: 0.15;
  position: absolute;
  bottom: 30px;
  right: 40px;
}
.testimonial-card h2 {
  color: white;
  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 20px;
}
.testimonial-card h2:after {
  background: var(--accent-soft);
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
}
.testimonial-text {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto 30px;
  font-style: italic;
}
.testimonial-author {
  font-weight: 600;
  color: var(--accent-soft);
}

/* ----- CTA (learning starts here) ----- */
.cta-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  border-radius: 40px;
  padding: 48px 56px;
  box-shadow: var(--shadow);
}
.cta-text h3 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}
.cta-text p {
  color: #475569;
}



.social i {
    font-size: 1.8rem;
    margin: 0 0.7rem;
    color: #787466;
    transition: color 0.2s;
}
.social i:hover { color: var(--gold); }


.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.contact-detail {
    display: flex;
    gap: 1.2rem;
    margin: 2rem 0;
    align-items: center;
}

.contact-detail i {
    font-size: 2rem;
    color: var(--gold);
    width: 48px;
}

.map-placeholder {
    background: #3e3a32;
    height: 260px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #655e4f;
    background-image: radial-gradient(circle at 30% 40%, #6e654f 2px, transparent 2px), radial-gradient(circle at 70% 70%, #b59d64 3px, transparent 3px);
    background-size: 40px 40px, 80px 80px;
}

.map-placeholder span {
    background: #27241e;
    padding: 0.6rem 2rem;
    border-radius: 60px;
    color: #c6a15b;
    font-weight: 600;
    border: 1px solid #7f714c;
}



.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.project-item {
    background-color: #fffbf5;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid #d9cfbc;
    transition: 0.15s;
}

.project-img {
    height: 200px;
    background-color: #b9aa8f;
    background-size: cover;
    background-position: center;
}

.project-img.img1 { background-image: linear-gradient(135deg, #615b4b, #b69e73), url('../image/DJI_0267-1-scaled.jpeg'); background-blend-mode: overlay; }
.project-img.img2 { background-image: linear-gradient(45deg, #4f503b, #8b7c61), url('../image/capa-site.png'); background-blend-mode: soft-light; }
.project-img.img3 { background-image: linear-gradient(160deg, #565138, #a08b60), url('../image/PMP-homepage-banner.jepg'); background-blend-mode: luminosity; }

.project-content {
    padding: 1.8rem 1.5rem;
}

.project-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.project-tag {
    color: var(--gold-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2b2a27;
    border-left: 8px solid var(--gold);
    padding-left: 1.5rem;
}


/* sustainability highlight */
.sustainability {
    background-color: var(--deep-moss);
    color: #f0eadb;
    padding: 4rem 0;
}

.sustainability .container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.sus-left {
    flex: 1 1 300px;
}

.sus-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
}

.sus-left p {
    font-size: 1.2rem;
}

.sus-right {
    flex: 2 1 400px;
    background: #4e5e48;
    padding: 2rem 2.5rem;
    border-radius: 40px;
    border-left: 8px solid var(--gold);
}

.sus-right ul {
    list-style: none;
}

.sus-right li {
    margin: 1.2rem 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sus-right i {
    color: var(--gold);
    font-size: 1.8rem;
    width: 40px;
}


/* team / instructors section — inspired by peers institute */
.team-section {
    margin: 4rem 0 1rem;
}

.section-caption {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
}

.section-caption h2 {
    font-size: 2.2rem;
    font-weight: 650;
    color: #1b4059;
}

.section-caption .chip {
    background: #9bc3db;
    color: #011f31;
    padding: 0.3rem 1.4rem;
    border-radius: 40px;
    font-weight: 500;
    font-size: 1rem;
    border: 1px solid white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.member {
    background: white;
    border-radius: 2rem;
    padding: 1.8rem 1rem 1.4rem 1rem;
    text-align: center;
    transition: transform 0.2s ease;
    border: 1px solid #d9e6f2;
    box-shadow: 0 12px 18px -12px #163a4d33;
}

.member:hover {
    transform: translateY(-5px);
    background: #fbfeff;
    border-color: #aac7df;
}

.avatar {
    background: #114b6e;
    width: 90px;
    height: 90px;
    margin: 0 auto 1.3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.6rem;
    font-weight: 300;
    border: 4px solid #f3c26b;
    box-shadow: 0 6px 0 #0f344b;
}

.member h4 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
    color: #01243b;
}

.member p {
    font-size: 0.95rem;
    color: #2f5c7a;
    margin-bottom: 1rem;
    font-weight: 500;
}

.member .role-icon {
    background: #ebf3fa;
    border-radius: 60px;
    padding: 0.4rem 1rem;
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1f5780;
}


/* about grid – main clone content from "peers institute technologies" */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 2.5rem;
    margin: 3rem 0 3rem 0;
}

@media (max-width: 800px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.mission-text {
    background: white;
    border-radius: 2.5rem;
    padding: 2.2rem;
    box-shadow: 0 20px 30px -10px rgba(38, 77, 115, 0.2);
    border: 1px solid rgba(115, 165, 194, 0.3);
}

.tagline-clone {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.tagline-clone .pill {
    background: #22668d;
    color: white;
    padding: 0.3rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.tagline-clone .pill.light {
    background: #f2d9b3;
    color: #2d4b65;
}

.mission-text h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #00263b;
    margin: 1rem 0 1.2rem 0;
}

.mission-text h2 i {
    color: #e6a32e;
    font-size: 2rem;
    margin-right: 8px;
}

.mission-text p {
    font-size: 1.1rem;
    color: #1e3a4e;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    margin-bottom: 1rem;
    font-weight: 450;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f0f7fe;
    padding: 0.6rem 1rem;
    border-radius: 50px;
}

.feature-list i {
    color: #22668d;
    font-size: 1.3rem;
    width: 28px;
    text-align: center;
}

.stats-panel {
    background: linear-gradient(125deg, #ffffff 0%, #f5faff 100%);
    border-radius: 2.5rem;
    padding: 2rem 1.8rem;
    border: 2px solid white;
    box-shadow: 0 25px 35px -14px #0b304a1a;
}

.stats-panel h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #003153;
    margin-bottom: 0.5rem;
}

.stats-panel h3 i {
    color: #f3b03b;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0 1.8rem;
}

.stat-item {
    background: white;
width: 535px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0c4a6e;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #3d637f;
}

.testimonial-mini {
    background: #cbe0f0;
    padding: 1.5rem;
    border-radius: 2rem;
    margin-top: 1.2rem;
    border: 1px solid white;
    font-style: italic;
    color: #05314b;
}

.testimonial-mini i {
    color: #f3b03b;
    margin-right: 4px;
}


/* main card – "clone" of institute about section */
.about-card {
    max-width: 1532px;
    width: 100%;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 3rem 3rem 2rem 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 32, 64, 0.25),
                0 0 0 1px rgba(156, 188, 226, 0.3) inset;
    overflow: hidden;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(255,255,255,0.7);
}

.backups{
 background-image:url('../image/f125a649-31ef-403b-9f53-4c10caf13681.png');
}

/* === HEADER (cloned from IIL style) === */
.site-header {
    background-color: #003057; /* deep navy — IIL corporate */
    color: white;
    padding: 1.2rem 0;
    border-bottom: 4px solid #f5a300; /* accent gold */
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 2rem;
    font-weight: 700;
    background-color: #f5a300;
    color: #003057;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.logo-text h1 {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.logo-text .tagline {
    font-size: 0.9rem;
    color: #c9d9e9;
    font-style: italic;
}

.header-contact a {
    color: white;
    text-decoration: none;
    background-color: rgba(255,255,255,0.1);
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.3);
    transition: 0.2s;
}

.header-contact a:hover {
    background-color: #f5a300;
    color: #003057;
    border-color: #f5a300;
}




        /* header section — peers institute & learning center */
        .institute-header {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 3rem;
            border-bottom: 2px dashed #bdd3e8;
            padding-bottom: 2rem;
        }

        .brand-block {
            display: flex;
            flex-direction: column;
        }

        .peers-badge {
            background: #0b2b40;
            color: white;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.05em;
            padding: 0.4rem 1.2rem;
            border-radius: 40px;
            display: inline-block;
            width: fit-content;
            margin-bottom: 1rem;
            border: 1px solid #356f9c;
            box-shadow: 0 2px 8px rgba(0,60,130,0.2);
            text-transform: uppercase;
        }

        .brand-block h1 {
            font-size: 2.8rem;
            font-weight: 700;
            line-height: 1.2;
            color: #0a2942;
        }

        .brand-block h1 span.institute {
            background: linear-gradient(135deg, #1d4e6f, #143750);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            border-right: 4px solid #2e7ead;
            padding-right: 0.8rem;
            margin-right: 0.3rem;
        }

        .brand-block h1 span.learning-center {
            display: inline-block;
            background: #f3c26b;
            color: #1d3b4e;
            font-size: 1.8rem;
            font-weight: 600;
            padding: 0.2rem 1.2rem;
            border-radius: 60px;
            margin-left: 0.5rem;
            box-shadow: 0 4px 0 #b47d2e;
        }

        .header-quote {
            background: #e5f0fa;
            padding: 0.8rem 1.8rem;
            border-radius: 60px;
            font-weight: 500;
            color: #1d4a6e;
            border: 1px solid white;
            font-size: 1.1rem;
            backdrop-filter: blur(4px);
        }

        .header-quote i {
            color: #f3b03b;
            margin-right: 8px;
        }

        .teaching-assistants {
            margin-top: 3rem;
        }

        .teaching-assistants h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #14365c;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            border-left: 8px solid #2d7aff;
            padding-left: 1.2rem;
        }

        .ta-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.2rem;
        }

        .ta-card {
            background: #fafcff;
            border-radius: 1.5rem;
            border: 1px solid #e2ebf6;
            padding: 1rem 1rem 1rem 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: 0.15s;
        }

        .ta-card:hover {
            background: white;
            border-color: #99bdff;
        }

        .ta-avatar {
            width: 48px;
            height: 48px;
            background: #0e3d6b;
            border-radius: 40%;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 1.2rem;
            box-shadow: 0 2px 8px #102a4422;
        }

        .ta-info h4 {
            font-weight: 700;
            color: #102b44;
        }

        .ta-info p {
            font-size: 0.8rem;
            color: #4570a3;
        }

        /* ===== WBENC / WOMEN-OWNED ===== */
        .wbe-section {
          background: #0a1a2b;
          color: white;
          padding: 70px 0;
          border-radius: 40px 40px 0 0;
          margin-top: 99px;
        }
        .wbe-grid {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 50px;
          align-items: center;
        }
        .wbe-badge {
          background: #ffffff10;
          border: 2px solid #f5a623;
          padding: 2rem;
          border-radius: 32px;
          text-align: center;
        }
        .wbe-badge h3 {
          color: #f5a623;
          font-size: 2rem;
          margin-bottom: 0.5rem;
        }
        .wbe-badge p {
          color: #cfdbe8;
        }
        .wbe-section .btn {
          margin-top: 1.5rem;
        }

        /* ===== FOOTER ===== */
        .site-footer {
          background: #0f1f2f;
          color: #b0c4de;
          padding: 40px 0;
          text-align: center;
        }

        /* ===== UTILITY ===== */
        .text-center {
          text-align: center;
        }
        .mt-4 {
          margin-top: 2rem;
        }
        .mb-2 {
          margin-bottom: 1rem;
        }



        hr {
            border: 1px solid #2f5577;
            margin: 20px 0;
        }

        /* responsive */
        @media (max-width: 800px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .header-flex {
                flex-direction: column;
                gap: 16px;
                align-items: start;
            }
        }
        @media (max-width: 500px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .global-badge {
                flex-direction: column;
                gap: 16px;
                border-radius: 32px;
            }
        }


/* responsiveness */
@media (max-width: 1000px) {
  .hero { flex-direction: column; }
  .features-grid, .program-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-section { flex-direction: column; text-align: center; gap: 30px; }
}
@media (max-width: 650px) {
  .navbar { flex-direction: column; gap: 16px; }
  .nav-links { flex-wrap: wrap; justify-content: center; gap: 20px; }
  .features-grid, .program-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 40px 20px; }
}

@media (max-width: 800px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}
